home *** CD-ROM | disk | FTP | other *** search
- {
- (C) Paul Alan Freshney 2006
- (Based on an Indy Client Demo)
-
- Last Modified: January 29th 2006
-
- This code is free to use as you wish. Please do not distribute this code without
- authorisation from myself. We are free to distribute versions of CerberusNET as
- you wish as long as you link to "www.paulalanfreshney.com/cerberus" somewhere
- within the application!
-
- 32
- }
-
- program CerberusNET;
-
- uses
- Forms,
- ClientMain in 'ClientMain.pas' {frmMain},
- utility in 'utility.pas',
- preferences in 'preferences.pas' {frmPreferences},
- about in 'about.pas' {frmAbout};
-
- {$R *.RES}
-
- begin
- Application.Initialize;
- Application.CreateForm(TfrmMain, frmMain);
- Application.CreateForm(TfrmPreferences, frmPreferences);
- Application.CreateForm(TfrmAbout, frmAbout);
- Application.Run;
- end.
-